Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AugAssign support #193

Merged
merged 1 commit into from
Nov 17, 2023
Merged

AugAssign support #193

merged 1 commit into from
Nov 17, 2023

Conversation

odashi
Copy link
Collaborator

@odashi odashi commented Nov 16, 2023

Overview

This PR adds the support for all AugAssign syntaxes (+=, -=, ...).

Details

Introduces a new NodeTransformer to introduce the following rule:

AugAssign(target, op, value) -> Assign([target], BinOp(target, op, value))

This rule is applied before any other rules so that the further conversion (e.g., assignment reduction) can work as expected.

Examples:
無題

References

Blocked by

@odashi odashi merged commit 4ebd535 into main Nov 17, 2023
12 checks passed
@odashi odashi deleted the aug-assign branch November 17, 2023 00:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants